home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / BASIC / LIB / EVENTSHELL / DOCS / StrongHelp < prev    next >
Text File  |  1996-04-11  |  2KB  |  54 lines

  1. -----------------------------------------------------------------
  2. PROCshell_InitHelpSystem()
  3. =>    str    path name of help files
  4.     bool    DieWithTask flag
  5.  
  6. Used to register a new help system with StrongHlp.
  7. After making this call StrongHlp will add the help
  8. system found in the given path to its icon bar menu.
  9.  
  10. If StrongHlp cannot be found then the initialisation
  11. command is stored and sent when StrongHlp is started.
  12.  
  13. -DieWithTask Flag
  14. When TRUE the help system will only be added to 
  15. the StrongHlp icon bar menu while the user 
  16. application is actually running. When FALSE it
  17. remains available when the application quits.
  18.  
  19.  
  20. -----------------------------------------------------------------
  21.  
  22. PROCshell_HelpWord()
  23. =>    str    word for which help is to be displayed
  24.  
  25. Used to send a help request to StrongHlp. If the word
  26. is found in the help system the appropriate help text
  27. will be displayed.
  28.  
  29. StrongHlp will be started if it is not already
  30. running and StrongHelp$Dir has been defined. If
  31. StrongHlp cannot be found then an error will be
  32. generated.
  33.  
  34. -----------------------------------------------------------------
  35.  
  36. FNshell_StrongHlpIsAvailable
  37. =>    None
  38.  
  39. <=    bool    TRUE if StrongHelp$Dir is defined,
  40.          otherwise FALSE
  41.               
  42. Used to check that StrongHlp is installed
  43. on the system. This call can be used to shade
  44. a 'Help' menu item if StrongHlp has not been seen
  45. by the Filer, or if it is not available.
  46.  
  47. Example code...
  48.  
  49. Shade menu item with the handle HlpItem% if StrongHlp
  50. is not available:
  51.  
  52. PROCshell_MenuShade(HlpItem%,(FNshell_StrongHlpIsAvailable=0))
  53.   
  54. -----------------------------------------------------------------